home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.002 / xemacs-1 / README.i486-unknown-linuxelf
Encoding:
Text File  |  1995-09-07  |  3.5 KB  |  80 lines

  1. This directory contains Linux ELF executables for XEmacs 19.13.  These
  2. were compiled with XPM, X-Face, native sound support, and full optimization
  3. ("-O2 -m486").  It is dynamically compiled with libc (v5), libm(v5),
  4. libtermcap(v2), and the X11R6 dynamic libraries.  Everything else is
  5. statically sompiled in including ncurses. (Sorry about the problems this has
  6. caused).  Please don't hesitate to write to following address if there are
  7. any other problems. 
  8.  
  9. Built by James LewisMoss <moss@cs.sc.edu>
  10.  
  11. The tar file which contains these executables contains only the
  12. executables (the architecture-dependent files.)  To use these
  13. executables, you will also need the architecture-independent files
  14. (the `lisp', `etc' and `info' directories.)  These files are
  15. distributed in a seperate file (xemacs-19.13-common.tar.gz.)
  16.  
  17. HOW TO INSTALL
  18. ==============
  19.  
  20. Simply cd to the directory in which you wish to install xemacs,
  21. and then unpack the architecture independent tar file, followed by
  22. the architecture-dependent files for those architectures you use.
  23.  
  24.   cd /usr/local/    # or wherever you install 3rd-party software
  25.   gzip -dc xemacs-19.13-common.tar.gz | tar -pxf -
  26.   gzip -dc xemacs-19.13-i486-unknown-linuxelf.tar.gz | tar -pxf -
  27.  
  28. Replace `/usr/local/' with what you like, but it probably ought not
  29. have `xemacs' or a version number in it - that directory is expected
  30. to be the common prefix for installed software, and xemacs-specific
  31. subdirectories of it will be created.  The directories are arranged
  32. in such a way that multiple versions of xemacs can peaceably coexist
  33. under the same `/usr/local/' tree.
  34.  
  35. After unpacking, you will have a directory structure like:
  36.  
  37.   ./bin/i486-unknown-linuxelf/xemacs-19.13*    executable
  38.   ./lib/xemacs-19.13/lisp/            lisp library
  39.   ./lib/xemacs-19.13/etc/            data directory
  40.   ./lib/xemacs-19.13/info/            documentation
  41.   ./lib/xemacs-19.13/i486-unknown-linuxelf/    utility programs
  42.   ./lib/xemacs/lock/                lock directory
  43.   ./lib/xemacs/site-lisp/            local lisp code
  44.  
  45. For the executable to work, the directory layout must look pretty
  46. much like this; the executable looks for "sibling" directories at
  47. run-time to figure out where its lisp library is.  These constraints
  48. on the local directory layout are necessary to avoid having to
  49. hardcode pathnames into the executables, or require that environment
  50. variables be set before running the executable.
  51.  
  52. It is possible to do a multi-architecture in such a way that the
  53. executables for the various architectures are on different
  54. partitions; in that case you must install some symbolic links so
  55. that the directory structure appears as above from the clients.
  56.  
  57. For example, assume that $LOCAL refers to a directory which is
  58. mounted only on machines of the same type; and $SHARED refers to
  59. a directory which is shared among all machines.  You could set up
  60. the directory hierarchy like this:
  61.  
  62.   $LOCAL/bin/xemacs-19.13*
  63.   $LOCAL/lib/xemacs-19.13/i486-unknown-linuxelf/
  64.   $LOCAL/lib/xemacs-19.13/lisp@  ->  $SHARED/xemacs-19.13/lisp/
  65.   $LOCAL/lib/xemacs-19.13/etc@   ->  $SHARED/xemacs-19.13/etc/
  66.   $LOCAL/lib/xemacs-19.13/info@  ->  $SHARED/xemacs-19.13/info/
  67.   $LOCAL/lib/xemacs@             ->  $SHARED/xemacs/
  68.  
  69.   $SHARED/xemacs-19.13/lisp/
  70.   $SHARED/xemacs-19.13/etc/
  71.   $SHARED/xemacs-19.13/info/
  72.   $SHARED/xemacs/lock/
  73.   $SHARED/xemacs/site-lisp/
  74.  
  75. That is, the various $SHARED directories contain only the
  76. architecture-independent files, but still look like normal
  77. installation trees, since the architecture-independent
  78. directories have been replaced with symbolic links to the 
  79. single $COMMON tree.
  80.